home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt089src.lha / Mutt-0.89i-AMIGA / src / state.h < prev    next >
C/C++ Source or Header  |  1998-01-28  |  1KB  |  49 lines

  1. /*
  2.  * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
  3.  * 
  4.  *     This program is free software; you can redistribute it and/or modify
  5.  *     it under the terms of the GNU General Public License as published by
  6.  *     the Free Software Foundation; either version 2 of the License, or
  7.  *     (at your option) any later version.
  8.  * 
  9.  *     This program is distributed in the hope that it will be useful,
  10.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *     GNU General Public License for more details.
  13.  * 
  14.  *     You should have received a copy of the GNU General Public License
  15.  *     along with this program; if not, write to the Free Software
  16.  *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */ 
  18.  
  19. #ifndef STATE_H
  20. #define STATE_H
  21.  
  22. typedef struct
  23. {
  24.   FILE *fpin;
  25.   FILE *fpout;
  26.   char *prefix;
  27.   int flags;
  28. }
  29. STATE;
  30.  
  31. /* flags for the STATE struct */
  32. #define M_DISPLAY    (1<<0) /* output is displayed to the user */
  33.  
  34.  
  35.  
  36. #ifdef _PGPPATH
  37. #define M_VERIFY    (1<<1) /* perform signature verification */
  38. #endif
  39.  
  40.  
  41.  
  42. #define state_puts(x,y) fputs(x,(y)->fpout)
  43. #define state_putc(x,y) fputc(x,(y)->fpout)
  44.  
  45. void mutt_body_handler (BODY *, STATE *);
  46. void mutt_decode_attachment (BODY *, STATE *);
  47.  
  48. #endif /* STATE_H */
  49.